home *** CD-ROM | disk | FTP | other *** search
- /* $Id: rtl-time.h,v 1.1 2006/01/01 07:24:34 lace Exp $
- * Include file for internal (rtl/) time handling utilities of libcaptive
- * Copyright (C) 2005 Jan Kratochvil <project-captive@jankratochvil.net>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; exactly version 2 of June 1991 is required
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-
- #ifndef _CAPTIVE_RTL_TIME_H
- #define _CAPTIVE_RTL_TIME_H 1
-
-
- #include <glib/gmacros.h>
- #include <libgnomevfs/gnome-vfs-result.h>
- #include "reactos/ntos/types.h" /* For PLARGE_INTEGER */
- #include <time.h>
-
-
- G_BEGIN_DECLS
-
- GnomeVFSResult timespec_to_Time(PLARGE_INTEGER Time,const struct timespec *timespec);
- GnomeVFSResult Time_to_timespec(struct timespec *timespec,const PLARGE_INTEGER Time);
-
- G_END_DECLS
-
-
- #endif /* _CAPTIVE_RTL_TIME_H */
-